home *** CD-ROM | disk | FTP | other *** search
/ Language/OS - Multiplatform Resource Library / LANGUAGE OS.iso / smaltalk / manchest.lha / MANCHESTER / manchester / 4.1 / ComposedText-asImage.st < prev    next >
Text File  |  1993-07-24  |  684b  |  27 lines

  1. "    NAME        ComposedText-asImage
  2.     AUTHOR        Bernard Horan <bernard@is.morgan.com>
  3.     CONTRIBUTOR    Bernard Horan <bernard@is.morgan.com>
  4.     FUNCTION     conversion method
  5.     ST-VERSIONS    4.1
  6.     PREREQUISITES     
  7.     CONFLICTS     
  8.     DISTRIBUTION    global
  9.     VERSION        2.0
  10.     DATE        September 1992
  11.     SUMMARY        One method to convert a composedText to an Image. BH, 25/9/92"!
  12.  
  13. 'From Objectworks\Smalltalk(R), Release 4.1 of 15 April 1992 on 10 September 1992 at 4:00:33 am'!
  14.  
  15.  
  16.  
  17. !ComposedText methodsFor: 'converting'!
  18.  
  19. asImage
  20.     "Bernard Horan, 10 September 1992"
  21.     "self printString asComposedText asImage"
  22.     | pixmap |
  23.     pixmap := Pixmap extent: self bounds extent.
  24.     self displayOn: pixmap graphicsContext.
  25.     ^pixmap asImage! !
  26.  
  27.